home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ MSO2K Web 1.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office 2000\Common
  5. "NAME"="URL Options"
  6. "VERSION"="1.07"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Office URL"
  9. "DESCRIPTION 1"="This plug-in can be used to configure the URL that is opened when you click the "Help" - "Office on the Web" link."
  10. "DESCRIPTION 2"="To restore the original URL, clear the fields."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15. "COMMENT 2"=" "
  16.  
  17.  
  18. sV1="HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\9.0\Common\Internet\OfficeOnTheWeb"
  19. sPCheck="HKCU\Software\Microsoft\Office\9.0\"
  20. Sub Plugin_Initialize 
  21. if RegPathExists(sPCheck) then
  22.  s=RegReadValue(sV1)
  23.  Call SetUIElement(1,s)
  24. else
  25.  Call Disable()
  26. end if
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  s=GetUIElement(1)
  34.  if len(s)>0 then
  35.     Call RegWriteValue(sV1,s,1)
  36.  else
  37.     s=RegReadValue(sV1)
  38.     if IsEmpty(s)=false then
  39.        Call RegDeleteValue(sV1)
  40.     end if
  41.  end if
  42.  
  43.  Call Logoff
  44. End Sub
  45.  
  46. Sub Plugin_Terminate 
  47. End Sub
  48.